home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / pack / xfh132.lzh / XFH / src / libmygcc / gnulib / umodsi3.c < prev   
C/C++ Source or Header  |  1993-01-16  |  145b  |  11 lines

  1. #include "common.h"
  2.  
  3. unsigned SItype
  4. __umodsi3 (a, b)
  5.      unsigned SItype a, b;
  6. {
  7.   unsigned SItype q, r;
  8.   divmodu (q, r, a, b);
  9.   return r;
  10. }
  11.